home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Output / OSSaudiooutput.C < prev    next >
C/C++ Source or Header  |  2005-03-14  |  3KB  |  88 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   OSSaudiooutput.C - Audio output for Open Sound System
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include <stdlib.h>
  24. #include <stdio.h>
  25. #include <fcntl.h>
  26. #include <sys/soundcard.h>
  27. #include <sys/stat.h>
  28. #include <sys/ioctl.h>
  29. #include <unistd.h>
  30.  
  31. #include "OSSaudiooutput.h"
  32. #include "../Misc/Util.h"
  33.  
  34. OSSaudiooutput::OSSaudiooutput(){
  35.     int i;
  36.     int snd_bitsize=16;
  37.     snd_fragment=0x00080009;//fragment size (?)
  38.     snd_stereo=1;//stereo
  39.     snd_format=AFMT_S16_LE;
  40.     snd_samplerate=SAMPLE_RATE;
  41.     
  42.     smps=new short int[SOUND_BUFFER_SIZE*2];
  43.     for (i=0;i<SOUND_BUFFER_SIZE*2;i++) smps[i]=0;
  44.         
  45.     snd_handle=open(config.cfg.LinuxOSSWaveOutDev,O_WRONLY,0);
  46.     if (snd_handle == -1) {
  47.     fprintf(stderr,"ERROR - I can't open the %s .\n",config.cfg.LinuxOSSWaveOutDev);
  48.     return;
  49.     };
  50.     ioctl(snd_handle,SNDCTL_DSP_RESET,NULL);
  51.  
  52.     ioctl(snd_handle,SNDCTL_DSP_SETFMT,&snd_format);
  53.     ioctl(snd_handle,SNDCTL_DSP_STEREO,&snd_stereo);
  54.     ioctl(snd_handle,SNDCTL_DSP_SPEED,&snd_samplerate);
  55.     ioctl(snd_handle,SNDCTL_DSP_SAMPLESIZE,&snd_bitsize);
  56.     ioctl(snd_handle,SNDCTL_DSP_SETFRAGMENT,&snd_fragment);
  57.         
  58. };
  59.  
  60.  
  61. /*
  62.  * Output the samples to the soundcard
  63.  * The samples are bigger than -1.0 and smaller 1.0
  64.  */
  65. void OSSaudiooutput::OSSout(REALTYPE *smp_left,REALTYPE *smp_right){
  66.     int i;
  67.     REALTYPE l,r;
  68.     if (snd_handle<0) return;
  69.     for (i=0;i<SOUND_BUFFER_SIZE;i++){
  70.     l=smp_left[i];
  71.     r=smp_right[i];
  72.     
  73.     if (l<-1.0) l=-1.0; else if (l>1.0) l=1.0;
  74.     if (r<-1.0) r=-1.0; else if (r>1.0) r=1.0;
  75.     
  76.     smps[i*2]=(short int) (l*32767.0);    
  77.     smps[i*2+1]=(short int) (r*32767.0);
  78.     };
  79.     write(snd_handle,smps,SOUND_BUFFER_SIZE*4);// *2 because is 16 bit, again * 2 because is stereo
  80. };
  81.  
  82.  
  83. OSSaudiooutput::~OSSaudiooutput(){
  84.     close(snd_handle);
  85.     delete [] smps;
  86. };
  87.  
  88.